home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / var / lib / dpkg / info / manpages-pl.postinst < prev    next >
Text File  |  2008-12-24  |  412b  |  18 lines

  1. #!/bin/sh
  2.  
  3. set -e
  4.  
  5.  if [ "$1" = "configure" ]; then
  6.      if dpkg --compare-versions "$2" le 1.59.990908-3; then
  7.     dpkg-divert --package manpages-pl --rename --remove \
  8.         /usr/share/man/pl/man8/rpm.8.gz >/dev/null 2>&1 || true
  9.      fi
  10.      echo ""
  11.      echo "To enable these manpages set LC_MESSAGES to 'pl_PL'."
  12.      echo "Man will then search for Polish manpages under /usr/share/man/pl."
  13.      echo ""
  14.  fi
  15.  
  16.  
  17.  
  18.